home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / MVUPDAT3.ZIP / RAINBOW.ZIP / COLORS.ZIP / COLORS5.TXT < prev    next >
Text File  |  1996-04-13  |  476b  |  24 lines

  1. Macro FileExit
  2.  
  3. Sub MAIN
  4.         On Error Goto ErrorRoutine
  5.         
  6.         If macros.bDebug Then MsgBox "start FileExit"
  7.  
  8.         REM enable automacros
  9.         DΘsactiverMacrosAuto 0
  10.  
  11.         macros.SavToGlobal(NomFichier$())
  12.         macros.objectiv
  13.         FichierQuitter
  14.         Goto Done
  15.  
  16. ErrorRoutine:
  17.         On Error Goto Done
  18.         If macros.bDebug Then
  19.                 MsgBox "error " + Str$(Err) + " occurred"
  20.         End If
  21.  
  22. Done:
  23. End Sub
  24.